home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / sbin / fsck.nfs < prev    next >
Text File  |  2009-10-19  |  333b  |  22 lines

  1. #! /bin/sh
  2. #
  3. # fsck.nfs
  4. #
  5. # Dummy fsck.nfs file that always returns success. We
  6. # need this for when the root file system is on NFS:
  7. # there is no way to find out if root is NFS mounted
  8. # and we really want to do a "fsck -a /".
  9. #
  10.  
  11. while :
  12. do
  13.     case "$1" in
  14.         -*) shift ;;
  15.         *) break ;;
  16.     esac
  17. done
  18.  
  19. echo "$1: NFS file system."
  20.  
  21. exit 0
  22.